home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / C / Applications / Transcript 1.0b1 / Hello World ƒ / HelloWorld.c < prev    next >
Text File  |  1996-06-15  |  348b  |  24 lines

  1. /***
  2.   *
  3.   *    HelloWorld.c - Demonstrate the Transcript application.
  4.   *
  5.   *    Copyright © 1996 Christopher E. Hyde.  All rights reserved.
  6.   *
  7.   ***/
  8.  
  9. #include <Quickdraw.h>
  10. #include "DbgPrintF.h"
  11.  
  12.  
  13. QDGlobals qd;
  14.  
  15.  
  16. void
  17. main (void)
  18. {
  19.     InitGraf(&qd.thePort);
  20.  
  21.     DbgPrintF("Hello World!\n");
  22.     DbgPrintF("Testing ... %d %d %d ... testing!\n", 1, 2, 3);
  23. }
  24.